BenSelect Documentation
Remove decimals and add preceding zeros to salary
Send Feedback
JScript Examples > JScript for General Use > Remove decimals and add preceding zeros to salary

Glossary Item Box

To change a salary from 50,000.00 to 005000000 (no decimals). Preceding zeroes must be added if the salary (with 2 digits after the decimal) is not 9 bytes).
 
// Converts 50,000.00 to 005000000

if (Event.Value != null && Event.Value != "") {

var x = decimal.Parse(double(Event.Value)) * 100;

Event.Value = x.ToString("000000000");

}

©2024. All Rights Reserved.